home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / math / ast53src.zip / MAKEFILE.BGI < prev    next >
Text File  |  1996-09-29  |  1KB  |  31 lines

  1. # Astrolog (Version 5.30) File: makefile (PC version)
  2. #
  3. # IMPORTANT NOTICE: The graphics database and chart display routines
  4. # used in this program are Copyright (C) 1991-1996 by Walter D. Pullen
  5. # (Astara@msn.com, http://www.magitech.com/~cruiser1/astrolog.htm).
  6. # Permission is granted to freely use and distribute these routines
  7. # provided one doesn't sell, restrict, or profit from them in any way.
  8. # Modification is allowed provided these notices remain with any
  9. # altered or edited versions of the program.
  10. #
  11. # This Makefile created for Borland Turbo C/C++ compiler.
  12. # First created 8/21/1994.
  13.  
  14. CFLAGS = -ml -Ff=50  -G- -O -r  -w-pia -w-sus
  15.  
  16. CC = tcc
  17. TLINK = tlink
  18. LIBPATH = C:\TC\LIB
  19. name = astrolog
  20. objs = attf.obj cgaf.obj egavgaf.obj hercf.obj ibm8514f.obj pc3270f.obj\
  21.  astrolog.obj data.obj data2.obj general.obj io.obj\
  22.  calc.obj matrix.obj placalc.obj placalc2.obj\
  23.  charts0.obj charts1.obj charts2.obj charts3.obj intrpret.obj\
  24.  xdata.obj xgeneral.obj xdevice.obj\
  25.  xcharts0.obj xcharts1.obj xcharts2.obj xscreen.obj
  26.  
  27. $(name).exe : $(objs)
  28. # We are compiling in Large memory model with 16,384 bytes for stack storage.
  29.   $(TLINK) /c /x /L$(LIBPATH) @makefile.cfg
  30. #
  31.